* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
.hero {
    background-color: #e6d9c7;
    display: flex;
    justify-content: space-evenly;
    padding: 50px;
    gap: 50px;
}
.left {
    flex: 1;
    color: #3d3d3d;
    text-align: center;
    align-content: center;
    line-height: 1.5;
}
.left h1 {
    font-size: 40px;
}
.left p {
    font-size: 25px;
}
.right {
    flex: 1;
}
.right img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 25px;
}
.meet {
    color: #6F4E37;
    text-align: center;
}
.residents {
    display: flex;
    justify-content: space-evenly;
}
.ash {
    border: solid black 2px;
}
.eli {
    border: solid black 2px;
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column;  
        padding: 20px;           
        align-items: center;     
    }
    
    .left, .right {
        width: 100%;             
        height: auto;           
    }
}
.main-title {
    text-align: center;
    background-color: #f5f2eb;
    padding: 25px;
    color: #3d3d3d;
}
.main {
    padding: 50px;
    display: flex;
    text-align: center;
    background-color: #f5f2eb;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 25px;
    box-sizing: border-box;
    font-size: 20px;
    color: #3d3d3d;

}
.main img {
    height: 200px;
    width: 280px;
    border-radius: 25px;
}
.beans {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    gap: 25px;
    box-sizing: border-box;
    background-color: #e6d9c7;
    color: #3d3d3d;

}
.beans-left {
    flex: 1 1 1;

}
.beans-right {
    flex: 1;
    font-size: 25px;
    line-height: 1.5;
    text-align: center;
}
.beans img{
    max-width: 100%;
    max-height: 400px;
    border-radius: 25px;
}

@media (max-width: 768px) {
    .beans {
        flex-direction: column;  
        padding: 20px;           
        align-items: center;     
    }
    
    .beans-left, .beans-right {
        width: 100%;             
        height: auto;           
    }
}
.food-box {
    background-color: #f5f2eb;
    font-size: 25px;
    text-align: center;
    padding: 50px;
    color: #3d3d3d;
    
}
.food {
    color: #3d3d3d;
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}
.food img {
    height: 300px;
    width: 400px;
    max-width: 100%;
    border-radius: 25px;
}
@media (max-width: 768px) {
    .food img{
        flex-direction: column;  
        padding: 20px;           
        align-items: center;     
    }
}
.atmosphere-box {
    padding: 50px;
    background-color: #e6d9c7;
    text-align: center;
    font-size: 25px;
    color: #3d3d3d;
}
.atmosphere {
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
    background-color: #e6d9c7;
    align-items: center;
    text-align: center;
    text-wrap: wrap;
    font-size: 25px;
    color: #3d3d3d;
}
.atmosphere img {
    border-radius: 25px;
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .atmosphere img{
        flex-direction: column;  
        padding: 20px;           
        align-items: center;     
    }
    
}
.footer {
    background-color:#6F4E37;
    text-align: center;
    font-size: 10px;
    padding: 10px;
    color: white;
}